This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Bill Desjipymanakoi 27.Jan.04 07:43 AM a Web browser Domino Designer6.5Windows XP
If your computer use scandinavian character set, you have to do changes in SoapConnect.
You have to replace "." with ","
Function ReplaceSubstring(inputStr As String, fromStr As String, toStr As
String) As String
' This function acts similarly to the @Formula language function '
@ReplaceSubstring'
Dim newStr As String
Dim position As Integer
newStr = inputStr
While Instr(newStr, fromStr) > 0
position = Instr(newStr, fromStr)
newStr = Left$(newStr, position - 1) + toStr + Right$(newStr,
Len(newStr) - (position + Len(fromStr) - 1))
Wend
ReplaceSubstring = newStr